home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / HippoDraw / HippoDrawSrc1.1 / Hippo.subproj / GridView.h < prev    next >
Encoding:
Text File  |  1992-04-25  |  501 b   |  34 lines

  1. #import <appkit/View.h>
  2.  
  3. @interface GridView : View
  4. {
  5.     id    spacing;
  6.     id    grayField;
  7.     id    graySlider;
  8.     id  graphicView;
  9.     id  form;
  10. }
  11.  
  12. /* Public methods */
  13.  
  14. - runModalForGraphicView:graphicView;
  15.  
  16. /* Private methods */
  17.  
  18. - drawGrid:(int)grid;
  19.  
  20. /* Methods overridden from superclass */
  21.  
  22. - drawSelf:(const NXRect *)rects :(int)rectCount;
  23. - mouseDown:(NXEvent *)event;
  24.  
  25. /* Target/Action methods */
  26.  
  27. - show:sender;
  28. - off:sender;
  29. - cancel:sender;
  30. - changeSpacing:sender;
  31. - changeGray:sender;
  32.  
  33. @end
  34.